2d4440ff13f9510a2dbfbe6f4205fa10cd0f4d8c,epcis/src/main/java/org/oliot/epcis/serde/mongodb/QuantityEventWriteConverter.java,QuantityEventWriteConverter,convert,#QuantityEventType#number#,43
Before Change
dbo.put("bizStep", quantityEventType.getBizStep());
// Disposition
if (quantityEventType.getDisposition() != null)
dbo.put("disposition", quantityEventType.getDisposition());
// Read Point
if (quantityEventType.getReadPoint() != null) {
ReadPointType readPointType = quantityEventType.getReadPoint();
After Change
dbo.put("bizStep", new BsonString(quantityEventType.getBizStep()));
// Disposition
if (quantityEventType.getDisposition() != null)
dbo.put("disposition", new BsonString(quantityEventType.getDisposition()));
// Read Point
if (quantityEventType.getReadPoint() != null) {
ReadPointType readPointType = quantityEventType.getReadPoint();